home *** CD-ROM | disk | FTP | other *** search
/ Champak 50 / Volume 50 - JOGO DISK .iso / Games / kingsky.swf / scripts / frame_1 / DoAction.as
Text File  |  2007-10-01  |  386b  |  17 lines

  1. stop();
  2. satuKaliSaja = true;
  3. this.onEnterFrame = function()
  4. {
  5.    sedang = _root.getBytesLoaded();
  6.    total = _root.getBytesTotal();
  7.    xpersen = Math.floor(sedang / total * 100);
  8.    persen = xpersen + " %";
  9.    wpersen = Math.floor(xpersen);
  10.    bar_mc.gotoAndStop(wpersen);
  11.    if(sedang == total)
  12.    {
  13.       delete this.onEnterFrame;
  14.       gotoAndStop("loader");
  15.    }
  16. };
  17.